草庐IT

Java RegEx 找不到匹配错误

全部标签

ruby-on-rails - 包含模块时出现 "Uninitialized constant"错误

我正在尝试引用关联扩展,但它出错了:NameError(uninitializedconstantUser::ListerExtension):app/models/user.rb:2:in`'这是我的实现:app/models/user.rbclassUsertrue,:extend=>Listerlib/lister.rbmoduleListerExtensiondeflisterself.map(&:to_s).join(',')endend我正在使用Railsv3.1.3。 最佳答案 AndrewMarshall对自动加载设

ruby - 将一个字符串与多个模式匹配

如何使用ruby​​中的正则表达式将字符串与多个模式进行匹配。我正在尝试查看一个字符串是否包含在前缀数组中,这是行不通的,但我认为它至少证明了我正在尝试做的事情。#example:#prefixes.include?("Mrs.KirstenHess")prefixes.include?(name)#shouldreturntrue/falseprefixes=[/Ms\.?/i,/Miss/i,/Mrs\.?/i,/Mr\.?/i,/Master/i,/Rev\.?/i,/Reverend/i,/Fr\.?/i,/Father/i,/Dr\.?/i,/Doctor/i,/Atty\.

Ruby 的 File.open 给出 "No such file or directory - text.txt (Errno::ENOENT)"错误

我在我的Win7机器上安装了Ruby1.9.2。创建了一个简单的analyzer.rb文件。它有这一行:File.open("text.txt").each{|line|putsline}当我运行代码时,它给我这个错误:analyzer.rb:1:in`initialize':Nosuchfileordirectory-text.txt(Errno::ENOENT)fromanalyzer.rb:1:in`open'fromanalyzer.rb:1:in`'Exitcode:1我不明白。在与analyzer.rb文件相同的目录中有一个text.txt文件。我还尝试输入文件的绝对路径C

ruby-on-rails - 类型错误 : no implicit conversion of Symbol into Integer

我在尝试更改散列的值时遇到了一个奇怪的问题。我有以下设置:myHash={company_name:"MyCompany",street:"Mainstreet",postcode:"1234",city:"MyCity",free_seats:"3"}defcleanupstringstring.titleizeenddefformatoutput=Hash.newmyHash.eachdo|item|item[:company_name]=cleanup(item[:company_name])item[:street]=cleanup(item[:street])output当我

ruby - 为什么在安装 gem 时出现 "permission denied"错误?

我正在尝试安装Jekyll。运行geminstalljekyll后我得到这个错误:ERROR:Whileexecutinggem...(Errno::EACCES)Permissiondenied-/usr/local/lib/ruby/gems/2.0.0/gems/jekyll-1.0.3/CONTRIBUTING.md当我运行gemlist时,我可以看到Jekyll已经安装了,所以我很困惑:***LOCALGEMS***bigdecimal(1.2.0)classifier(1.3.3)colorator(0.1)commander(4.1.3)directory_watcher

ruby-on-rails - 错误 : Failed to build gem native extension on Mavericks

我正在尝试在OSX10.9上的Rails项目中运行bundle。到达pggem时失败并出现此错误:Gem::Installer::ExtensionBuildError:ERROR:Failedtobuildgemnativeextension./Users/kyledecot/.rvm/rubies/ruby-2.0.0-p247/bin/rubyextconf.rbcheckingforpg_config...noNopg_config...tryinganyway.Ifbuildingfails,pleasetryagainwith--with-pg-config=/path/t

ruby-on-rails - 找不到 libcurl 或 curl/curl.h (RuntimeError)

我正在尝试在Windows计算机上安装curb0.8.0,但我似乎无处可去。我一直在我的谷歌搜索中尝试每个网站3页深。拜托,任何人都知道我如何安装这个单一的东西。我已经下载了curl并将其解压到C:\curl。我已将它添加到我的路径中并正在运行命令:geminstallcurb----with-curl-lib=C:\curl\bin--with-curl-include=C:\curl\include但它不起作用。我不断收到同样的错误。有什么建议吗? 最佳答案 如果你在ubuntu上:sudoapt-getinstalllibcu

ruby-on-rails - Rails 安装在 Ubuntu 上失败,错误为 "cannot load such file -- mkmf"

我在Ubuntu11上安装Rails时遇到了这个问题:root@salah:/home/salah/rubygems-1.8.15#sudogeminstallmysqlFetching:mysql-2.8.1.gem(100%)Buildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingmysql:ERROR:Failedtobuildgemnativeextension./usr/bin/ruby1.9.1extconf.rb/usr/local/lib/site_ruby/1.9.1/rubygems/c

ruby-on-rails - 错误信息: Make sure that `gem install pg -v ' 0. 18. 1'` 绑定(bind)成功

我对ruby有疑问。我尝试了很多,但对我没有任何用处。当我想启动railsserver时,我得到这个错误信息:Anerroroccurredwhileinstallingpg(0.18.1),andBundlercannotcontinue.Makesurethat"geminstallpg-v'0.18.1"succeedsbeforebundling.这是我已经尝试过的:sudoinstallgembundleinstallbundleinstall--pathvendor/cachegeminstallpg-v'0.18.1'当我尝试geminstallpg-v'0.18.1'时

Ruby 全局匹配正则表达式?

在其他语言中,在RegExp中,您可以使用/.../g进行全局匹配。然而,在Ruby中:"hellohello".match/(hello)/只捕获一个问候语。如何捕获所有的hello? 最佳答案 您可以使用扫描方法。scan方法将为您提供所有匹配项的数组,或者如果您将其传递给一个block,则将每个匹配项传递给该block。"hello1hello2".scan(/(hello\d+)/)#=>[["hello1"],["hello2"]]"hello1hello2".scan(/(hello\d+)/).eachdo|m|put